@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@600&display=swap");

body {
  background: #ffffff;
  background-size: cover;
  background-position: center;
  font-family: "Outfit", sans-serif;
  margin: 0;
  /* padding-top: 3rem; */
}

/***************************************************** NavBar *****************************************************/
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgb(0, 0, 0);
  color: #fff;
  padding: 0 2rem;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.03);
  height: 6.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

.header__logo img {
  /* font-weight: 700; */
  /* font-size: 1.5rem; */
  position: absolute;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
  height: 100px;
  width: 140px;
}

.header__logo img:hover {
  filter: drop-shadow(0 0 12px rgba(255, 217, 0, 0.44)) drop-shadow(0 0 24px #ffd9004a);
  transform: translateY(-50%) scale(1.025);
  /* slight zoom-in */
}

.navbar {
  display: flex;
  align-items: center;
  height: 100%;
}

.navbar__menu {
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.navbar__link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3.5rem;
  width: auto;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1.5px;
  padding: 0 1rem;
  font-size: 0.8rem;
  position: relative;
  transition: color 0.4s ease, transform 0.3s ease;
}

.navbar__link span {
  display: block;
  opacity: 1;
  transform: translate(0);
  transition: 250ms ease all;
}

.navbar__link::after {
  content: "";
  position: absolute;
  bottom: 0.8rem;
  left: 50%;
  width: 0%;
  height: 2px;
  background-color: #156fc4;
  transition: width 0.3s ease, left 0.3s ease;
  transform: translateX(-50%);
}

.navbar__link:hover {
  color: #156fc4;
  transform: translateY(-2px);
}

.navbar__link:hover::after {
  width: 100%;
}

.navbar__link:hover::after,
.navbar__link.active::after {
  width: 100%;
}

/*# sourceMappingURL=styles.css.map */

/* From Uiverse.io by TCdesign-dev */
.button {
  display: inline-block;
  border-radius: 7px;
  border: none;
  background: #1875ff;
  color: white;
  font-family: "Outfit", sans-serif;
  text-align: center;
  font-size: 13px;
  box-shadow: 0px 14px 56px -11px #1875ff;
  width: 10em;
  padding: 1em;
  transition: all 0.4s;
  cursor: pointer;
  right: 2rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.4s;
}

.button span:after {
  content: "for Sales";
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.7s;
}

.button:hover span {
  padding-right: 3.92em;
}

.button:hover span:after {
  opacity: 4;
  right: 0;
}

/*********************************** Navbar DropDown Radios Products ******************************************/

.dropdown_menu {
  position: relative;
}

/* Dropdown container */
.dropdown-content {
  display: none;
  position: absolute;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  border-radius: 8px;
  min-width: 220px;
  padding: 10px 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  z-index: 1;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* List container */
.dropdown_list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/* Dropdown links */
.dropdown-content a {
  color: #fff;
  padding: 12px 20px;
  text-decoration: none;
  display: block;
  transition: background-color 0.25s ease, padding-left 0.25s ease;
}

/* Hover effect on list items */
.dropdown-content a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #1875ff;
  border-radius: 4px;
  padding-left: 25px;
  /* subtle sliding effect */
}

.dropdown_list a:active {
  color: #011431;
}

/* Show dropdown with transition */
.dropdown_menu.show .dropdown-content,
.dropdown_menu:hover .dropdown-content {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* sub menu */
/* Submenu inside "Licence Free" */
.submenu {
  position: absolute;
  left: 100%;
  top: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
  border-radius: 6px;
  min-width: 200px;
  padding: 8px 0;
  list-style: none;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateX(10px);
  z-index: 1001;
}

.list1 {
  position: relative;
}

/* Show submenu on hover */
.list1:hover>.submenu {
  display: block;
  opacity: 1;
  transform: translateX(0);
}

/* Submenu links */
.submenu li a {
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  display: block;
  transition: background 0.3s ease;
}

.submenu li a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.list2 {
  position: relative;
}

/* Show submenu on hover */
.list2:hover>.submenu {
  display: block;
  opacity: 1;
  transform: translateX(0);
}

.list3 {
  position: relative;
}

/* Show submenu on hover */
.list3:hover>.submenu {
  display: block;
  opacity: 1;
  transform: translateX(0);
}

/* Hero Section */
/* Hero Container */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 20px;
}

/* Background Video */
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Dark Overlay */
.dark-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* Fixed */
  z-index: 1;
}

/************************************************ Hero Content **************************************/
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 90%;
  margin-top: 32rem;
}

.hero h1 {
  font-size: 3rem;
  /* margin-bottom: 1rem; */
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  /* font-family: "Segoe UI", sans-serif; */
  font-weight: bold;
}

.hero p {
  font-size: 1.4rem;
  /* margin-bottom: 2rem; */
  line-height: 1.6;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  /* font-family: "Open Sans", sans-serif; */
}

/* CTA Button */
.cta-button {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 14px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
}

.cta-button:hover {
  background-color: #0056b3;
  box-shadow: 0 6px 16px rgba(0, 86, 179, 0.4);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .cta-button {
    font-size: 1rem;
    padding: 12px 24px;
  }
}

/* *************************** Product and description ************************************** */

.section-wrapper {
  padding: 2rem;
  text-align: center;
}

.section-heading {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.product-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}

.product {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: center;
}

.product.reverse {
  direction: rtl;
}

.product.reverse>* {
  direction: ltr;
}

/* Loader wrapper for animated rings and image */
.loader-wrapper {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 0 auto;
}

.loader-img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 360px;
  height: 400px;
  transform: translate(-50%, -50%);
  z-index: 10;
  object-fit: contain;
  pointer-events: none;
}

/* Description Card */
.description-card {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 20px 30px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  width: 600px;
  height: 350px;
}

.description-card h2 {
  text-align: center;
  margin-top: 50px;
}

.description-card h4 {
  text-align: center;
  text-transform: uppercase;
  color: #223c00;
}

.description-card p {
  /* text-align: center; */
  margin-top: 10px;
  color: #223c00;
}

.description-card:hover {
  box-shadow: 0px 14px 56px -11px #1875ff;
}

/* flipper description */
.description-card-container {
  /* width: 400px; */
  height: auto;
  margin: auto;
  cursor: pointer;
  transition: transform 0.6s ease;
}

/* .description-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  transition: transform 0.5s ease;
} */

.description-card-container.flipped .description-card .card-front {
  display: none;
}

.description-card-container.flipped .description-card .card-back {
  display: block;
}

.card-front,
.card-back {
  transition: opacity 0.4s ease;
}

.card-back {
  display: none;
}

/* Optional styles */
.card-back ul {
  padding-left: 20px;
  margin: 0;
}

.card-back li {
  margin-bottom: 6px;
  font-size: 14px;
}

.flip-hint {
  margin-top: 15px;
  font-size: 14px;
  color: #888;
  text-align: center;
  font-style: italic;
  transition: color 0.3s ease;
}

.description-card-container:hover .flip-hint {
  color: #444;
}

/* Warp Loader */
.item {
  position: relative;
  width: 350px;
  height: 350px;
}

.loader-pulse {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #a2a0a7;
  animation: load-pulse 0.85s infinite linear;
}

@keyframes load-pulse {
  0% {
    transform: scale(0.15);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 0;
  }
}

.loader-wrapper {
  position: relative;
  width: 350px;
  height: 350px;
  margin: 0 auto;
}

/* .loader-img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: contain;
  z-index: 1;
  pointer-events: none;
} */

/* ****************************** Footer *********************************************** */
.footer:before,
.footer:after {
  box-sizing: border-box;
}

/* html {
  font-size: 100%;
} */

/* body {
  margin: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  font-size: 14px;
  background-color: #f4f4f4;
  align-items: start;
  min-height: 100vh;
} */

.footer {
  display: flex;
  flex-flow: row wrap;
  padding: 30px 30px 20px 30px;
  color: #2f2f2f;
  background-color: #fff;
  border-top: 1px solid #e5e5e5;
}

.footer>* {
  flex: 1 100%;
}

.footer__addr {
  margin-right: 1.25em;
  margin-bottom: 2em;
}

.footer__logo {
  /* font-family: "Pacifico", cursive; */
  font-weight: 400;
  /* text-transform: lowercase; */
  font-size: 1.5rem;
}

.footer__addr h2 {
  margin-top: 1.3em;
  font-size: 15px;
  font-weight: 400;
}

.nav__title {
  font-weight: 600;
  font-size: 15px;
  background-color: #000000;
  color: white;
  padding: 6px 12px;
  border-radius: 8px 8px 0 0;
  /* only top corners rounded */
  display: inline-block;
  margin-bottom: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.footer address {
  font-style: normal;
  color: #000000;
}

.footer__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  max-width: max-content;
  background-color: rgb(33, 33, 33, 0.07);
  border-radius: 100px;
  color: #2f2f2f;
  line-height: 0;
  margin: 0.6em 0;
  font-size: 1rem;
  padding: 0 1.3em;
}

.footer ul {
  list-style: none;
  padding-left: 0;
}

.footer li {
  line-height: 2em;
}

.footer a {
  text-decoration: none;
}

.footer__nav {
  display: flex;
  flex-flow: row wrap;
}

.footer__nav>* {
  flex: 1 50%;
  margin-right: 1.25em;
}


.nav__ul a {
  color: #000000;
}

.nav__ul--extra {
  column-count: 1;
  column-gap: 1.25em;
}

/* Reset styling for nested lists so they don't break */
.nav__ul--extra ul {
  column-count: 1;
  /* no columns for sub-list */
  /* padding-left: z; */
  /* indentation */
  margin-top: 5px;
  list-style: none;
  /* optional bullet points */
}

.nav__ul--extra ul li {
  break-inside: avoid;
  /* prevents splitting across columns */
}


.legal {
  display: flex;
  flex-wrap: wrap;
  color: #070606;
}

.legal__links {
  display: flex;
  align-items: center;
}

.heart {
  color: #2f2f2f;
}

@media screen and (min-width: 24.375em) {
  .legal .legal__links {
    margin-left: auto;
  }
}

@media screen and (min-width: 40.375em) {
  .footer__nav>* {
    flex: 1;
  }

  .nav__item--extra {
    flex-grow: 2;
  }

  .footer__addr {
    flex: 1 0px;
  }

  .footer__nav {
    flex: 2 0px;
  }
}

/* Mobile Responsiveness */

@media (max-width: 768px) {

  /* Navbar adjustments */

  /* Hero section */
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  /* Product section */
  .image-row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .image-container {
    width: 90%;
    max-width: 300px;
  }

  .content-table {
    grid-template-columns: 1fr;
  }



  /* Footer */
  .footer {
    flex-direction: column;
    padding: 20px;
  }

  .footer__nav {
    flex-direction: column;
  }

}